// Locale mirror of `/about` → renders `/de/about`. Same pattern as the // home mirror: re-export the bare page, enumerate non-default locales. import { SUPPORTED_LOCALES, DEFAULT_LOCALE } from '../../../lib/locale' export { default } from '../../about/page' export { renderMode, meta } from '../../about/page' export const getStaticPaths = async (): Promise> => SUPPORTED_LOCALES .filter((l) => l !== DEFAULT_LOCALE) .map((locale) => ({ params: { locale } }))